home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-27 | 372 b | 25 lines | [TEXT/CWIE] |
- /*
- Test.java
-
- Test of JDK Native Methods.
-
- © 1997 by Michael J. Webb (mjw@codewell.com)
-
- */
-
- import TimeUtils;
-
- class Test
- {
-
- public static void main()
- {
- /** Test our native methods.
- */
- System.out.println(TimeUtils.GetRealTime());
- System.out.println(TimeUtils.GetRelativeTime());
- System.out.println(TimeUtils.GetTimeString(TimeUtils.GetRealTime()));
- }
-
- }
-